Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / clients / {app-name} / nodes / {node}

Unregister cluster node from this client

Path parameters:
realm - realm name (not id!)
app-name -
node -

Resource Methods
Method Summary
NameDescription
DELETE /admin/realms/{realm}/clients/{app-name}/nodes/{node}Unregister cluster node from this client

Method Detail

DELETE /admin/realms/{realm}/clients/{app-name}/nodes/{node}

Unregister cluster node from this client

HTTP Example:
DELETE /admin/realms/{realm}/clients/{app-name}/nodes/{node}
API Example:

ClientResource.unregisterNode({'realm': /* name realm name (not id!) */,
  'app-name': /* name */,
  'node': /* node */});

Output:
void

Keycloak REST Services 1.2.0.Final